createFile
Creates a new file. The type of the file which will be created needs to be set.
Syntax
boolean createFile(int | String type);
Parameters
Parameter | Type | Description |
---|---|---|
type | int | String | The type of the file to be created set as a hexadecimal integer for the Java code or docx , xlsx , pptx , or pdf for the .docbuilder script file (see OFFICESTUDIO_FILE_XXX values). |
Example
Java
CDocBuilder.initialize("");
CDocBuilder builder = new CDocBuilder();
builder.createFile(FileTypes.Document.DOCX);
CDocBuilder.dispose();
.docbuilder
builder.CreateFile("docx")